/* Self-hosted webfonts (latin subset) — replaces the Google Fonts request so the
   site makes no third-party calls. Fraunces + Outfit are open-source (SIL OFL).
   Both are VARIABLE fonts: one file per family covers every weight via the `wght`
   axis. Fraunces also carries the `opsz` (optical-size) axis the serif headings
   rely on — `font-optical-sizing: auto` (the CSS default) drives it by font-size. */

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