/* Poppins Font Definition */
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* AIDEV-NOTE: Font globale Poppins applicato a tutta l'applicazione (MudBlazor + Syncfusion + contenuto custom) */
body, html {
    font-family: 'Poppins', 'Helvetica', 'Arial', sans-serif;
}

/* Se hai altre varianti del font Poppins (Bold, Light, etc.), aggiungile qui */
/* Esempio per Bold:
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/
