/* ============================================================
   Self-hosted fonts — Space Grotesk + JetBrains Mono (variable, wght axis)
   OFL-licensed, latin subset. Self-hosting removes the Google Fonts
   round-trip + Cloudflare Fonts /cf-fonts/ woff2 from the critical path
   (PageSpeed: critical chain 884ms -> ~0ms for fonts).
   font-display: swap = text paints in fallback, swaps when ready (no FOIT).
   ============================================================ */
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk.woff2') format('woff2-variations');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/jetbrains-mono.woff2') format('woff2-variations');
    font-weight: 400 600;
    font-style: normal;
    font-display: swap;
}
