/**
 * Self-hosted font-face declarations for Bitter (headings) + Source Sans 3 (body).
 *
 * Both files are variable fonts (single file, `wght` axis) pulled from Google Fonts'
 * own CDN output for the exact weight set the design system uses:
 * Bitter 400/600/700, Source Sans 3 400/500/600/700 — so a single `font-weight`
 * range per family is enough; the browser interpolates the requested weight.
 * Subset: Latin only (site content is English-only; revisit if EU-language
 * pages are added later).
 */

@font-face {
	font-family: 'Bitter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('bitter/bitter-latin-variable.woff2') format('woff2-variations'), url('bitter/bitter-latin-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('source-sans-3/source-sans-3-latin-variable.woff2') format('woff2-variations'), url('source-sans-3/source-sans-3-latin-variable.woff2') format('woff2');
}
