/* CSS systems — self-hosted webfonts (#559)
 *
 * The homepage type system: Jost (hero) + Victor Mono (body), both SIL
 * OFL 1.1, subset and self-hosted under assets/fonts/ (no CDN). These were
 * first vendored and trialled in the type-scale explorer (#558); this file
 * promotes them onto the live homepage.
 *
 * Paths are ../assets/fonts/* because url() resolves relative to this CSS
 * file (in css/), not the linking document at the repository root.
 *
 * Both keep their upstream family names: neither Jost nor Victor Mono
 * declares an OFL Reserved Font Name (their OFL copyright lines carry no
 * "with Reserved Font Name" clause), so a subset may ship under the
 * original name. See assets/fonts/README.md and the Third-Party Asset
 * Whitelist in docs/ARCHITECTURE.md. */
@font-face {
  font-family: "Jost";                    /* subset, OFL 1.1 (no Reserved Font Name) */
  src: url("../assets/fonts/jost-hero.woff2") format("woff2");
  font-weight: 100 900;                    /* variable range */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Victor Mono";             /* roman (subset), OFL 1.1 */
  src: url("../assets/fonts/victor-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Victor Mono";             /* cursive italic (subset), OFL 1.1 */
  src: url("../assets/fonts/victor-mono-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
