/* Self-hosted replacement for the Google Fonts <link> that used to load
   Archivo / Newsreader / IBM Plex Mono from fonts.googleapis.com +
   fonts.gstatic.com on every pageview. Files pulled once from Google's
   own CSS2 API (latin subset only — this site serves an English-language
   Contra Costa County audience) and vendored under assets/fonts/. Archivo
   and Newsreader are each a single variable-font file covering the full
   weight range this site uses; IBM Plex Mono ships as separate static
   files per weight. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/archivo-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/newsreader-variable.woff2') format('woff2');
}

@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');
}

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

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