/*
 * IBM Plex Fonts - Self-hosted
 *
 * Download fonts from: https://github.com/IBM/plex/releases
 * Place font files in /static/fonts/ directory
 *
 * Required fonts:
 * - IBM Plex Sans (400, 500, 700)
 * - IBM Plex Serif (600)
 * - IBM Plex Mono (400) - for code blocks
 */

/* Uncomment and update paths once font files are added:

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/IBMPlexSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/IBMPlexSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/IBMPlexSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/IBMPlexSerif-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/IBMPlexMono-Regular.woff2') format('woff2');
}

*/

/* Temporary: Use system fonts until IBM Plex fonts are added */
