/* Self-hosted fonts — Swiss/International Minimal, pairing A (fontSeed 0):
   Space Grotesk (display 500/700) + IBM Plex Mono (labels & tabular numerals 400/500/600).
   Latin woff2 subsets only. No CDN, no network at runtime. font-display:swap. */

/* ---- Space Grotesk (display + headings) ----
   Google ships one variable latin subset that covers 300–700; we declare the
   two weights we use against it so the browser maps correctly. */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("spacegrotesk-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("spacegrotesk-latin.woff2") format("woff2");
}

/* ---- IBM Plex Mono (small-caps labels, section numerals, prices, meta) ---- */
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("plexmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("plexmono-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("plexmono-600.woff2") format("woff2");
}
