/* 2026-03-10 developer3: Poppins FONT */

/* REGULAR */
@font-face {
    font-family: 'Poppins Regular';
    src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
    /* 2026-03-10 developer3: Evitamos que el texto sea invisible mientras carga la fuente */
    font-display: swap;
}

/* SEMIBOLD */
@font-face {
    font-family: 'Poppins Semi-Bold';
    src: url('/assets/fonts/Poppins/Poppins-SemiBold.ttf') format("truetype");
    font-weight: 600;
    /* 600 es el estándar para Semi-Bold */
    font-style: normal;
    font-display: swap;
}

/* BOLD */
@font-face {
    font-family: 'Poppins Bold';
    src: url('/assets/fonts/Poppins/Poppins-Bold.ttf') format("truetype");
    font-weight: 700;
    /* 700 es el estándar para Bold */
    font-style: normal;
    font-display: swap;
}
