/* ============================================================
   Davids Umzüge — Typografie
   v2: Sans-only (Inter), Plus Jakarta + Instrument Serif entfernt.
   ============================================================
   TODO (DSGVO): Inter-Files langfristig lokal hosten
   (Fontsource / self-hosted), aktuell via Google-Fonts-CDN.
   Google-Fonts-CDN ist in Deutschland abmahngefährdet —
   Hinweis im Datenschutz und im Cookie-Banner abgedeckt.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
  /* EINE Sans-Familie — kein Serif mehr im System */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  /* Backwards-Compat: --font-serif zeigt auf dieselbe Familie,
     damit alte styles.css-Regeln nicht brechen. */
  --font-serif: var(--font-sans);
}

html, body {
  font-family: var(--font-sans);
  /* Inter-Feature-Tuning: alternative 1, single-storey a, geometric */
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
