/*
  Helionyx.com - Self-hosted Fonts (fonts.css)
  Version: 1.0.0
  Author: Helionyx LLC
  Date: May 28, 2024

  Purpose:
  Provides self-hosted versions of Google Fonts (Raleway and Open Sans)
  with proper @font-face declarations for offline use.
*/

/* Raleway - Light (300) */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/raleway-v36-latin-300.woff2') format('woff2');
}

/* Raleway - Regular (400) */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-v36-latin-regular.woff2') format('woff2');
}

/* Raleway - Bold (700) */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/raleway-v36-latin-700.woff2') format('woff2');
}

/* Raleway - Black (900) - Fallback to Bold (700) */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/raleway-v36-latin-700.woff2') format('woff2');
}

/* Open Sans - Light (300) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/open-sans-v43-latin-300.woff2') format('woff2');
}

/* Open Sans - Regular (400) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2');
}

/* Open Sans - SemiBold (600) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/open-sans-v43-latin-600.woff2') format('woff2');
}

/* Open Sans - Bold (700) */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/open-sans-v43-latin-700.woff2') format('woff2');
}