/* ONEST (Logo / Títulos) */
@font-face {
    font-family: 'Onest';
    src: url('/fonts/Onest/Onest-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* todos los pesos disponibles */
    font-style: normal;
    font-display: swap;
}

/* LEXEND (Texto Secundario) */
@font-face {
    font-family: 'Lexend';
    src: url('/fonts/Lexend/Lexend-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* todos los pesos disponibles */
    font-style: normal;
    font-display: swap;
}

/* USO DE LAS FUENTES */
body, p, span {
    font-family: 'Lexend', sans-serif;
    font-weight: 400; /* peso normal para texto */
}

h1, h2, h3, .logo {
    font-family: 'Onest', sans-serif;
    font-weight: 700; /* peso para títulos y logo */
}

