/*FONTS*/

/* Regular version (normal weight, typically 400) */
@font-face {
    font-family: 'Rockwell';
    src: url('fonts/ROCK.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Italic version (regular weight, italic style) */
@font-face {
    font-family: 'Rockwell';
    src: url('fonts/ROCKI.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold version (typically weight 700) */
@font-face {
    font-family: 'Rockwell';
    src: url('fonts/ROCKB.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic version */
@font-face {
    font-family: 'Rockwell';
    src: url('fonts/ROCKBI.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Extra Bold version (if applicable, e.g., weight 800) */
@font-face {
    font-family: 'Rockwell';
    src: url('fonts/ROCKEB.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


