/* ===================================================
   🎨 BZSTK PWA - CORE FONTS (SOFORT GELADEN)
   ===================================================
   
   Nur die wichtigsten Fonts für den App-Start.
   Weitere Fonts werden bei Bedarf nachgeladen.
   ================================================= */

/* ===== ROBOTO (Standard-Font) ===== */
@import url('./roboto/font.css');

/* ===== INTER (Beliebte Alternative) ===== */
@import url('./inter/font.css');

/* ===== OPEN SANS (Häufig verwendet) ===== */
@import url('./open-sans/font.css');

/* ===== CSS CUSTOM PROPERTIES (Core) ===== */
:root {
  /* Sofort verfügbare Fonts */
  --font-roboto: 'Roboto', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-openSans: 'Open Sans', sans-serif;
  
  /* Fallbacks für noch nicht geladene Fonts */
  --font-merriweather: 'Roboto', serif;
  --font-sourceCodePro: 'Roboto', monospace;
  --font-lato: 'Roboto', sans-serif;
  --font-montserrat: 'Roboto', sans-serif;
  --font-poppins: 'Roboto', sans-serif;
  --font-notoSans: 'Roboto', sans-serif;
  --font-robotoSlab: 'Roboto', serif;
  --font-raleway: 'Roboto', sans-serif;
  --font-dmSans: 'Roboto', sans-serif;
  --font-playfairDisplay: 'Roboto', serif;
  --font-nunito: 'Roboto', sans-serif;
  --font-rubik: 'Roboto', sans-serif;
  --font-spaceGrotesk: 'Roboto', sans-serif;
}
