﻿/* CooperBT - Carga Local */
@font-face {
    font-family: 'CooperBT';
    src: url('fonts/CooperBT-Bold.woff2') format('woff2'), url('fonts/CooperBT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* Variables de Fuente (Opcional pero recomendado) */
:root {
    --font-primary: 'Nunito', sans-serif;
    --font-accent: 'CooperBT', serif;
}
/* Clases para Nunito */
.font-nunito-semibold {
    font-family: var(--font-primary);
    font-weight: 600;
}

.font-nunito-bold {
    font-family: var(--font-primary);
    font-weight: 700;
}

.font-nunito-extrabold {
    font-family: var(--font-primary);
    font-weight: 800;
}
/* Clase para CooperBT */
.font-cooper-bold {
    font-family: var(--font-accent);
    font-weight: bold;
}