/* ============================================================
   AVISON — Schriften
   Zwei Familien im Zusammenspiel, beide lokal aus assets/fonts/ — keine
   Google-Fonts-Anfragen zur Laufzeit, keine externen Requests.

   Gambarino       die Serife: nur Überschriften
   Chillax Bold    Wortmarke, Knöpfe, Namen, Zahlen
   Chillax Semibold die Kopfzeile (Navigation)
   Chillax Regular die eine Textschrift: jeder Fließtext, auch Einstieg und Zitate

   Martian Mono bleibt angemeldet, wird aber nur noch vom Edit-Modus
   und vom Archiv gebraucht; der Browser lädt sie erst dort.
   Bei Martian Mono sind Latin und Latin-Extended getrennt, damit
   Umlaute und Anführungszeichen sicher abgedeckt sind, ohne
   Kyrillisch mitzuladen.
   ============================================================ */

/* ---------- Chillax ----------
   Drei Schnitte: Regular für Fließtext, Semibold für die Kopfzeile,
   Bold für alles Laute. Die Gewichtsbereiche sind fest verteilt —
   unter 500 Regular, genau 500 Semibold, ab 600 Bold. So fettet der
   Browser nichts künstlich nach. */
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Regular.woff2") format("woff2"),
       url("../fonts/Chillax-Regular.woff") format("woff");
  font-weight: 1 499;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Semibold.woff2") format("woff2"),
       url("../fonts/Chillax-Semibold.woff") format("woff");
  font-weight: 500 599;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Bold.woff2") format("woff2"),
       url("../fonts/Chillax-Bold.woff") format("woff");
  font-weight: 600 1000;
  font-style: normal;
  font-display: swap;
}

/* ---------- Gambarino ----------
   Die Serife: große Überschriften, Zitate, der Einstiegssatz. Nur ein
   Schnitt (Regular), für alle Gewichte angemeldet, damit aus den
   600er-Überschriften kein künstliches Fett wird. */
@font-face {
  font-family: "Gambarino";
  src: url("../fonts/Gambarino-Regular.woff2") format("woff2"),
       url("../fonts/Gambarino-Regular.woff") format("woff");
  font-weight: 1 1000;
  font-style: normal;
  font-display: swap;
}

/* ---------- Martian Mono ----------
   Läuft von Haus aus sehr breit und deutlich größer als Clash
   Grotesk: bei gleicher Punktgröße misst die Versalhöhe 160 zu 134,
   die x-Höhe 120 zu 99. size-adjust: 84% zieht sie auf dieselbe
   Versalhöhe herunter. Damit bleiben alle vorhandenen font-size-Werte
   gültig — die Vorgängerschrift war mit 132% auf genau dieselbe
   Bezugshöhe gebracht worden. Werte im Browser gemessen, nicht
   geschätzt. */
@font-face {
  font-family: "Martian Mono";
  src: url("../fonts/MartianMono-latin.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
  size-adjust: 84%;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Martian Mono";
  src: url("../fonts/MartianMono-latinext.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
  size-adjust: 84%;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
