/**
 * Pharmabot Local Font Stack
 * GDPR-compliant: nessuna richiesta a server esterni (Google Fonts)
 * Sentenza LG München I (20.01.2022, Az. 3 O 17493/20)
 *
 * Sostituisce fonts.googleapis.com con system font stack nativo.
 * Per ripristinare Google Fonts con self-hosting, scaricare i file .woff2
 * in /assets/fonts/ e aggiungere @font-face qui.
 */

/* System font stack che replica Inter (sans-serif geometrico) */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji";
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
}
