/* Shared site font rules to ensure consistent typography across layouts and pages */
:root {
    --site-font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--site-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--site-font-family);
}
