/* Windows 98 Fonts */

/* MS Sans Serif approximation - using system fonts */
@font-face {
    font-family: "MS Sans Serif";
    src: local("Microsoft Sans Serif"),
        local("Tahoma"),
        local("Segoe UI");
    font-weight: normal;
    font-style: normal;
}

/* Pixel-perfect font for retro feel */
@font-face {
    font-family: "Pixelated MS Sans Serif";
    src: local("MS Sans Serif"),
        local("Microsoft Sans Serif");
    font-weight: normal;
    font-style: normal;
}

/* Disable font smoothing for authentic look */
* {
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
}

/* Force pixel fonts in specific areas */
.pixel-font {
    font-family: "MS Sans Serif", "Microsoft Sans Serif", Tahoma, sans-serif;
    font-size: 11px;
    letter-spacing: 0px;
}

/* Monospace for code/notepad */
.mono-font {
    font-family: "Courier New", Courier, "Lucida Console", monospace;
    font-size: 12px;
}