/*
  ========================================
  Local Fonts CSS
  Keeps only the active production font faces.

  The original template declared every Roboto/Rubik weight and italic variant.
  Browsers then downloaded rarely used faces such as Roboto Italic and Light.
  Limiting declarations here lets CSS fall back to synthetic weight/style when
  needed, without paying for extra font files on normal page loads.
  ========================================
*/

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

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

/* Rubik: headings, navigation, buttons */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/rubik/Rubik-Regular.woff2') format('woff2');
}

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

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