/* Festivenomics Shell — self-hosted faces, spec §7.
 *
 * Four files, one copy, every app: the variable Inter and Space Grotesk plus
 * the two static Space Mono weights. These are the exact binaries the OS app
 * used to carry inline as base64 (three copies of Inter, two of Space
 * Grotesk — ~217 KB of duplicate encoding in one HTML file) and that eo
 * duplicated as seven static instances. Self-hosting also retires the
 * landing page's runtime dependency on Google Fonts.
 *
 * The url() is relative to this stylesheet, so the fonts/ directory must
 * travel beside it — sync-shell.sh copies them as a pair.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/inter-var-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('fonts/space-grotesk-var-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-mono-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-mono-700-latin.woff2') format('woff2');
}
