@font-face {
    font-family: 'Inter';
    src: url('../fonts/PRIMARIA/Inter_24pt-Regular.ttf') format('truetype');
    font-weight: 200; /* Extra Light */
    font-style: normal;
    font-display: swap;
}

/* (Repite lo mismo para Oswald y Lobster Two con sus respectivos nombres de archivo) */
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/SECUNDARIA/Oswald-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Lobster Two';
    src: url('../fonts/TERCIARIA/LobsterTwo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

/* 2. Configuración de Bootstrap 5 */
:root {
    /* Sobrescribimos la fuente de Bootstrap por Inter */
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, sans-serif;

    /* Variables personalizadas para tu línea gráfica */
    --brand-font-headings: "Oswald", sans-serif;
    --brand-font-accent: "Lobster Two", cursive;

    /* Tus colores ya definidos */
    --bs-primary: #00D084;
    --bs-secondary: #17303B;
}

/* 3. Aplicación de estilos */
body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-weight: 300; /* Para que use la versión ExtraLight que subiste */
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--brand-font-headings);
    font-weight: 700;
    color: var(--bs-secondary);
    /*text-transform: uppercase;*/
}


.bg-dark {
    background: linear-gradient(to right, #009245 0%, #0C70B8 100%);
    color: white;
    justify-content: center;
    align-items: center;
}

.bg-dark2 {
    background: linear-gradient(to right, #009245 0%, #0C70B8 100%);
    color: white;
    justify-content: center;
    align-items: center;
}
