/* Font families */
@font-face {
    font-family: 'VAL Stencil';
    src: url('/3901-font.ttf') format('truetype');
}

/* Import Oswald font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');

/* Font classes */
.font-val-stencil {
    font-family: 'VAL Stencil', Arial, sans-serif;
}

.font-arial {
    font-family: Arial, sans-serif;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-comic-sans {
    font-family: 'Comic Sans MS', cursive;
}

/* Font selector styles */
.font-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.font-selector select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 200px;
}

/* Default styles - all text elements inherit the selected font */
body * {
    font-family: inherit !important;
}