/**
 * Lato Font - Self-hosted Privacy-First Implementation
 * Fallback to system fonts for privacy
 */

@font-face {
    font-family: 'Lato';
    src: local('Lato Regular'), local('Lato-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: local('Lato Bold'), local('Lato-Bold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Fallback to system sans-serif fonts */
.font-lato,
.custom-font[data-font="Lato"] {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif !important;
}