/* Self-hosted webfonts — Session 28 (A3, LCP fix).
   Replaces the render-blocking fonts.googleapis.com + fonts.gstatic.com chain
   (two third-party origins) that delayed the hero-text LCP ~2.45s on mobile.
   Latin subset only — matches the prior Google Fonts request exactly.
   Inter v20 is a variable font (weight axis 100–900) → one file covers
   400/500/700/800 used across the site. JetBrains Mono pinned at 600 (.mono).
   Files live in /assets/fonts/ and are long-cached by netlify.toml. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-latin-600.woff2') format('woff2');
}
