/* ===================================
   FONTS
   Importación de fuentes personalizadas
   =================================== */

/* Opus - Fuente principal */
@font-face {
    font-family: 'Opus';
    src: url('../assets/fonts/Opus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ArsenalSC Regular - Fallback para Opus */
@font-face {
    font-family: 'ArsenalSC-Regular';
    src: url('../assets/fonts/ArsenalSC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Poppins Regular - Fuente secundaria */
@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* MyriadPro Regular - Fallback para Poppins */
@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../assets/fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Si necesitan más pesos de Poppins, pueden agregarlos aquí */
/* Ejemplo para Poppins Bold (si lo tienes):
@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/