
/* Apply Poppins font globally */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  /* Ensure normal weight */
}

/* Apply Poppins font to headings if needed */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Optional: You can set the weight if needed */
}

/* Example for other text elements */
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}