/*
 * Inter (self-hosted, v4.1) — ersetzt den rsms.me-CDN-@import.
 * Nur die Variable-Schnitte (decken Gewicht 100–900 + Italic in einer Datei ab);
 * die ~18 statischen Einzelgewichte von rsms.me sind bei aktuellen Browsern überflüssig
 * (alle unterstützen Variable Fonts). Anwendung 1:1 wie rsms.me: :root-Basis + @supports-Upgrade,
 * damit Tablers var(--tblr-font-sans-serif)-Erwartung unverändert bleibt (kein Layout-Drift).
 */
@font-face {
  font-family: 'InterVariable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/InterVariable.woff2') format('woff2');
}
@font-face {
  font-family: 'InterVariable';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/InterVariable-Italic.woff2') format('woff2');
}
:root { font-family: Inter, sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
