/* 
  DSGVO-konforme lokale Schriftarten
  Diese Datei definiert Fallback-Fonts die lokal verfügbar sind
  Die Schriftarten werden mit system-ui und generischen Fallbacks definiert
  um keine Datentransfers zu Drittanbietern zu verursachen
*/

:root {
  --font-serif: 'Georgia', 'Garamond', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

/* Playfair Display Fallback - Serif Font für Überschriften */
@font-face {
  font-family: 'Playfair Display';
  src: local('Georgia'), local('Garamond');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: local('Georgia Bold'), local('Garamond Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: local('Georgia Bold'), local('Garamond Bold');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Open Sans Fallback - System Sans Fonts */
@font-face {
  font-family: 'Open Sans';
  src: local(-apple-system), local('Segoe UI'), local('Roboto');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: local(-apple-system), local('Segoe UI'), local('Roboto');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: local(-apple-system), local('Segoe UI'), local('Roboto');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
