/* ============================================================
   Custom Local Fonts - ssCITYofCAIRO
   Best practice: Only WOFF2 (modern), with system font fallback
   ============================================================ */

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

/* Roboto Bold (700) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/my-fonts/roboto-bold.woff2') format('woff2');
}

/* Roboto Condensed Regular (400) */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/my-fonts/roboto-condensed-regular.woff2') format('woff2');
}

