@font-face {
    font-family: 'GeneralSans-Regular';
    font-weight: normal;
    src: url('../fonts/GeneralSans-Regular.otf');
    font-display: swap;
    /*ltr:El contenido, texto y otros elementos fluyen de izquierda a derecha.*/
    direction: ltr;
    line-height: 1.6;
    letter-spacing: 0.3rem;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
}

@font-face {
    font-family: 'GeneralSans-Semibold';
    font-weight: bold;
    src: url('../fonts/GeneralSans-Semibold.otf');
    font-display: swap;
    /*ltr:El contenido, texto y otros elementos fluyen de izquierda a derecha.*/
    direction: ltr;
    line-height: 1.6;
    letter-spacing: 0.3rem;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
}

@font-face {
    font-family: 'GeneralSans-Light';
    font-weight: light;
    src: url('../fonts/GeneralSans-Light.otf');
    font-display: swap;
    /*ltr:El contenido, texto y otros elementos fluyen de izquierda a derecha.*/
    direction: ltr;
    line-height: 1.6;
    letter-spacing: 0.3rem;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
}

:root {
    --normal: 'GeneralSans-Regular', sans-serif;
    --light: 'GeneralSans-Light', sans-serif;
    --bold: 'GeneralSans-Semibold', sans-serif;
}