/* Apply font to body */
body {
    font-family: 'League Spartan', sans-serif;
}

/* Apply font to headings (h1, h2, h3, h4, h5, h6) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', serif;
}

/* Apply font to anchor tags */
a {
    font-family: 'League Spartan', sans-serif;
}

/* Apply font to list items */
li {
    font-family: 'League Spartan', sans-serif;
}

/* Apply font to paragraphs */
p {
    font-family: 'League Spartan', sans-serif;
}

/* You can also apply font to other elements as needed */
button, input, select, textarea {
    font-family: 'League Spartan', sans-serif;
}