/* Font variabile Roboto (stile normale) */
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype-variations');
    /* Specifica i range disponibili del font variabile */
    font-weight: 100 900;      /* il font supporta dal peso 100 a 900 */
    font-stretch: 75% 100%;    /* esempio di range di larghezza (da 75% a 100%)
                                se il font lo supporta */
    font-style: normal;
}

/* Font variabile Roboto (stile italico) */
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-stretch: 75% 100%;
    font-style: italic;
}