/*
 * Self-hosted variable fonts.
 *
 * Single .woff2 file per family using CSS4 variable-weight syntax — same
 * weight range as the previous Google Fonts CDN call, no external DNS,
 * no render-blocking third-party request.
 *
 * font-display: swap = browser renders fallback immediately, swaps in
 * the webfont when ready. Matches the &display=swap we had on the CDN.
 */

@font-face {
	font-family: 'Hanken Grotesk';
	src: url('../fonts/HankenGrotesk-Variable.woff2') format('woff2-variations'),
	     url('../fonts/HankenGrotesk-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'JetBrains Mono';
	src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2-variations'),
	     url('../fonts/JetBrainsMono-Variable.woff2') format('woff2');
	font-weight: 100 800;
	font-style: normal;
	font-display: swap;
}
