/* VOLTARC-PARITY-P1 2026-07-17 (P1.2) — self-hosted fonts, replaces Google Fonts CDN.
 * Space Grotesk and Archivo are variable fonts on Google Fonts: a single woff2 file
 * covers the whole weight range, so one @font-face per family (with a weight range)
 * is correct and matches what Google's own CSS serves (same file for every requested
 * weight of that family). Space Mono is shipped as two static weights (400/700).
 * Files fetched from fonts.gstatic.com (latin subset) — identical bytes to what the
 * CDN was already serving, just self-hosted at these fixed, preloadable paths.
 */
@font-face {
	font-family: 'Space Grotesk';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('fonts/SpaceGrotesk-Variable.woff2') format('woff2');
}
@font-face {
	font-family: 'Archivo';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('fonts/Archivo-Variable.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/SpaceMono-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Space Mono';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('fonts/SpaceMono-Bold.woff2') format('woff2');
}
