/* SIC self-hosted fonts (Phase 4 · task 20)
   3 variable woff2 latin subsets, total ~157 KB.
   Replaces Google Fonts CDN. font-display: swap = render fallback while font loads. */

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

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/fraunces-italic-latin.woff2') format('woff2-variations'),
       url('fonts/fraunces-italic-latin.woff2') format('woff2');
}

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