/* Define the IBM Plex Mono Regular font */
@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400; /* Regular weight */
    font-display: swap; /* Helps control font loading behavior */
    src: url('css/IBMPlexMono-Regular.woff2') format('woff2'),
         url('css/IBMPlexMono-Regular.woff') format('woff');
}

/* Apply the font to the body of the Nginx index page */
body {
    font-family: 'IBM Plex Mono', monospace;
}
