/* System Fonts - Ultra Performance & DSGVO Perfect */
/* Moderne Browser haben identische Schriften wie Inter */

body, * {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font-Gewichte optimieren */
.font-light, .hero-subtitle { font-weight: 300; }
.font-normal, p, span { font-weight: 400; }
.font-medium, .cta-button { font-weight: 500; }
.font-semibold, h3 { font-weight: 600; }
.font-bold, h2 { font-weight: 700; }
.font-extrabold, h1 { font-weight: 800; }

/* Performance Optimierungen */
@media (prefers-reduced-data: reduce) {
  * {
    font-family: system-ui, sans-serif !important;
  }
}