/* ===== POPPINS FONT - GLOBAL STYLESHEET ===== */
/* This file applies Poppins font globally across the entire Vicidial system */

/* Import Google Fonts Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Universal font-family override for all elements */
body, html, * {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
}

/* Ensure form elements also use Poppins */
input, textarea, select, button {
    font-family: 'Poppins', sans-serif !important;
}

/* Ensure table cells use Poppins */
td, th {
    font-family: 'Poppins', sans-serif !important;
}

/* Ensure all text elements use Poppins */
p, span, div, a, label, h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
}

