/* Self-hosted fonts — same-origin, no CDN round-trip → no flash-of-fallback.
   Critical faces (Archivo body, Bebas display, Fraunces quote) are <link rel=preload>ed
   in each page <head> so they arrive before first paint. Latin subset only
   (content is English + é/em-dash/curly-quotes, all within latin). */

/* Archivo — variable, one file covers 400–800 */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
}

/* Bebas Neue — single weight display */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/bebasneue-latin.woff2') format('woff2');
}

/* Fraunces — variable, normal + italic */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/fraunces-italic-latin.woff2') format('woff2');
}

/* DM Mono — labels/coords */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dmmono-500-latin.woff2') format('woff2');
}
