/* =============================================
   NUNITO FONT STYLESHEET
   Para incluir en todas las páginas del sitio
   ============================================= */

/* Nunito Light */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Nunito Regular */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Nunito Medium */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Nunito SemiBold */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Nunito Bold */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Nunito ExtraBold */
@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./nunito/Nunito-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Nunito Black */
@font-face {
    font-family: 'Nunito';
    font-family: 'Nunito Black';
    src: url('./nunito/Nunito-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    font-family: 'Nunito Black';
    src: url('./nunito/Nunito-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Utility classes for different font weights */
.nunito-light { font-family: 'Nunito', sans-serif; font-weight: 300; }
.nunito-regular { font-family: 'Nunito', sans-serif; font-weight: 400; }
.nunito-medium { font-family: 'Nunito', sans-serif; font-weight: 500; }
.nunito-semibold { font-family: 'Nunito', sans-serif; font-weight: 600; }
.nunito-bold { font-family: 'Nunito', sans-serif; font-weight: 700; }
.nunito-extrabold { font-family: 'Nunito', sans-serif; font-weight: 800; }
.nunito-black { font-family: 'Nunito', sans-serif; font-weight: 900; }