/* Self-hosted web fonts — no external CDN, no @import (ELM framework §9/§17/A7).
   Anton (400, static)  — hero mega type + the "1924" motif
   Oswald (variable)    — display headings, eyebrows, nav (condensed athletic voice)
   Inter (variable)     — body / UI (civic legibility)
   Only the LATIN subset is shipped (copy is English/ASCII). */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anton-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700; /* variable file covers the full range */
  font-display: swap;
  src: url('/assets/fonts/oswald-latin-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900; /* variable file covers the full range */
  font-display: swap;
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
}
