/*
 * Self-hosted marketing fonts.
 *
 * Scan #34 follow-up (BZR-4EE27D03): the marketing pages used to load
 * fonts from fonts.googleapis.com via a <link>, which can't be SRI-
 * hashed (Google serves different CSS per User-Agent, so a static
 * integrity= would break for some clients). Self-hosting the woff2
 * files removes the third-party dep entirely — no SRI question, no
 * Google connection, no CSP allowance for fonts.googleapis.com.
 *
 * Subset: latin-only (covers EN, most EU). If non-Latin locales need
 * support later, add the matching latin-ext / cyrillic / vietnamese
 * woff2 files alongside their @font-face blocks.
 *
 * Plus Jakarta Sans is NOT self-hosted — we substitute Inter for
 * display use to avoid an extra ~32 KB font download. The marketing
 * --font-display CSS variable still resolves to Inter via the system
 * fallback chain.
 */

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

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/marketing/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/marketing/fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/marketing/fonts/jetbrains-mono-latin-600-normal.woff2") format("woff2");
}
