/* 
 * System-Fonts (DSGVO-konform - KEINE externen Server)
 * Ersetzt Google Fonts vollständig
 * Nutzt moderne System-Schriften des Betriebssystems
 */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Alternative: Falls Sie später lokale Inter-Fonts hochladen möchten */

/*
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-light.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-extrabold.woff2') format('woff2');
}

Dann ändern Sie die body Definition zu:
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*/

/* 
 * VORTEILE der System-Fonts Lösung:
 * ✅ 100% DSGVO-konform (keine externen Server)
 * ✅ Keine IP-Übertragung
 * ✅ Schnellste Ladezeit (Fonts bereits installiert)
 * ✅ Kein Download erforderlich
 * ✅ Professionelles Aussehen auf allen Geräten
 * ✅ Keine rechtlichen Bedenken
 * 
 * System-Fonts verwendet:
 * - macOS/iOS: San Francisco (-apple-system)
 * - Windows: Segoe UI
 * - Android: Roboto
 * - Fallback: Arial, Helvetica
 */
