/* fonts.css — Calder & Vance (#27). Self-hosted webfonts (no external Google Fonts).
   Direction A uses Spectral (display) + Archivo (UI) + IBM Plex Mono (regulation refs).
   Drop the matching .woff2 binaries into /assets/fonts/ (see fonts/README.md).
   Every face has a system fallback in identity_tokens.css, so the shell renders
   correctly even before the binaries are added. font-display: swap avoids FOIT. */

/* ---- Spectral (display / serif) ---- */
@font-face {
  font-family: 'Spectral';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/spectral-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Spectral';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/spectral-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Spectral';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/spectral-400-italic.woff2') format('woff2');
}

/* ---- Archivo (UI / sans) ---- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/archivo-600.woff2') format('woff2');
}

/* ---- IBM Plex Mono (regulation / authority references) ---- */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
