@font-face {  
    font-family: 'Zilla Slab';  
    src: url('font-files/ZillaSlab-Regular.ttf') format('truetype');  
    font-weight: 400; /* Normal */  
    font-style: normal;  
}  

@font-face {  
    font-family: 'Zilla Slab';  
    src: url('font-files/ZillaSlab-Bold.ttf') format('truetype');  
    font-weight: 700; /* Bold */  
    font-style: normal;  
}  

/* Zilla Slab - Italic */
@font-face {
    font-family: 'Zilla Slab';
    src: url('font-files/ZillaSlab-Italic.ttf') format('truetype');
    font-weight: 400; /* Regular weight */
    font-style: italic;
}

/* Zilla Slab - Bold Italic */
@font-face {
    font-family: 'Zilla Slab';
    src: url('font-files/ZillaSlab-BoldItalic.ttf') format('truetype');
    font-weight: 700; /* Bold weight */
    font-style: italic;
}

/* Ajoutez d'autres variations de la police si nécessaire */