@font-face{font-family:"Inter";src:local("Inter"),local("Inter Regular");font-weight:400;font-style:normal}
@font-face{font-family:"Inter";src:local("Inter Medium");font-weight:500;font-style:normal}
@font-face{font-family:"Inter";src:local("Inter Bold");font-weight:700;font-style:normal}

/* Schriftarten als CSS Custom Properties definieren (zentral nutzbar) */
:root{
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-heading: "Inter", var(--font-family-base);
  --font-size-base: 16px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
}

/* Nur in fonts.css: globale Anwendung erlaubt */
html,body{font-family:var(--font-family-heading); font-size: var(--font-size-base);}

