/* Poppins Font - Local */
/* 
 * Para usar las fuentes Poppins reales:
 * 1. Descargá los archivos .woff2 desde https://fonts.google.com/specimen/Poppins
 * 2. Colocálos en assets/fonts/poppins/ con estos nombres:
 *    - poppins-light.woff2 (weight 300)
 *    - poppins-regular.woff2 (weight 400)
 *    - poppins-medium.woff2 (weight 500)
 *    - poppins-semibold.woff2 (weight 600)
 *    - poppins-bold.woff2 (weight 700)
 * 3. Descomentá las líneas url() en los @font-face abajo
 */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Segoe UI Light'), local('Segoe UI'), local('Tahoma'), local('Arial');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Segoe UI'), local('Tahoma'), local('Arial');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Segoe UI Semibold'), local('Segoe UI'), local('Tahoma'), local('Arial');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Segoe UI Semibold'), local('Segoe UI Bold'), local('Segoe UI'), local('Tahoma'), local('Arial');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Segoe UI Bold'), local('Segoe UI'), local('Tahoma'), local('Arial');
}

