/**
 * Local Fonts CSS - Oswald
 * Replaces Adobe Typekit for offline functionality
 * 
 * Font: Oswald (Free, Open Source)
 * License: SIL Open Font License
 * Source: Google Fonts
 * Download: https://fonts.google.com/specimen/Oswald
 * 
 * Font files needed in same directory:
 * - Oswald-Regular.ttf (or .woff2/.woff)
 * - Oswald-Bold.ttf (optional, for bold text)
 */

@font-face {
    font-family: 'Oswald';
    src: url('Oswald-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('Oswald-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Oswald', Arial, sans-serif;
}

* {
    font-family: inherit;
}