/* fonts.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* In fonts.css */
* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Optional: Set different font weights for specific elements */
body {
    font-weight: 400; /* Regular weight for body text */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* Semi-bold for headings */
}

strong, b {
    font-weight: 700; /* Bold for strong/b elements */
}