/* ============================================================
   ReportMaster — Self-hosted font stack
   GDPR compliant — žádné requesty na Google/třetí strany
   Fraunces → Georgia/serif fallback (nadpisy)
   Asap → system-ui stack (text)
   ============================================================ */

/* Asap — moderní sans-serif (body text) */
/* Pokud máš woff2 soubory, odkomentuj @font-face bloky níže */
/*
@font-face {
  font-family: 'Asap';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/asap.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
*/

/* System font stack - GDPR safe, žádné externe načítání */
:root {
  --font-sans: 'Asap', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Fraunces', 'Georgia', 'Palatino Linotype', 'Book Antiqua', 
    Palatino, 'Times New Roman', serif;
}
