/* Apply Poppins for Headings with custom letter spacing */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em; /* Customized letter spacing */
    font-weight: 500; /* Adjust weight if needed (e.g., 400 for regular, 700 for bold) */
}

/* Apply Lato for Body Text */
p, li, span {
    font-family: 'Lato', sans-serif;
    font-weight: 400; /* Regular weight for body text */
    letter-spacing: normal; /* Default letter spacing for body */
}
