/* deploy/manymoats/fonts.css — Inter 5D, the house face.
 *
 * WHAT THIS IS. Inter 4.1 by Rasmus Andersson, under the SIL Open Font License 1.1, with two axes
 * added by this house and EVERY OUTLINE UNTOUCHED — 2915 glyphs byte-identical to upstream, proved
 * by domains/design/font-library/scripts/gate-conversion.py on every build.
 *
 * WHY NOT AETHER. Aether was drawn here and is retired outright (founder ruling 2026-08-13,
 * "OPEN SOURCE -> 5D"). No seat in this house can draw; Inter's letterforms are a master's.
 *
 * HONEST STATE OF THE AXES. `DEPT` and `TIME` exist in fvar and are wired through every variation
 * table, so a browser will accept and interpolate them. They carry NO deltas yet — moving them
 * changes nothing on screen today. The plumbing below is live and correct; the depth is not built.
 * That sentence stays here until it is false.
 *
 * CSP: font-src 'self' — these files are same-origin, no external font host.
 */

@font-face {
  font-family: 'Inter 5D';
  src: url('./fonts/Inter5D-latin.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  /* latin + punctuation + currency — 759 of 2937 glyphs, 97KB. The full 353KB face is
     fonts/Inter5D.woff2 and is not loaded by default. */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Axes actually present: opsz 14-32, wght 100-900, DEPT 0-100, TIME 0-1000.
   Inter has no wdth and no slnt — do not write them, they are silently discarded. */
:root[data-font="house"] {
  --house-fvs: "opsz" 14, "wght" 400, "DEPT" var(--house-dept, 0), "TIME" var(--house-time, 0);
}

html[data-font="house"] body,
html[data-font="house"] .hero h1,
html[data-font="house"] .hero p.lead,
html[data-font="house"] #syntax,
html[data-font="house"] .syntax {
  font-family: 'Inter 5D', Inter, system-ui, -apple-system, sans-serif;
  font-variation-settings: var(--house-fvs);
  font-optical-sizing: auto;
}

/* TIME 0 is the still frame and it is complete — reduced motion loses movement, never meaning. */
@media (prefers-reduced-motion: reduce) {
  :root[data-font="house"] {
    --house-time: 0;
    --house-dept: 0;
  }
}
