@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@500&display=swap");

/* Preserve the existing navigation typography. */
.gym-sidebar,
.gym-top-header {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

/* Apply medium text throughout content, including page overrides and dialogs.
   Menu descendants and icon fonts retain their own styles. */
body :not(:where(
    .gym-sidebar, .gym-sidebar *,
    .gym-top-header, .gym-top-header *,
    .fa, .fas, .far, .fab, .fal, .fad, .fat,
    [class*="fa-"], .material-icons, .material-symbols-outlined,
    .bi, [class*="icon-"],
    b, strong
)) {
    font-family: "Instrument Sans", sans-serif !important;
    font-weight: 500 !important;
}

/* Restore bold weight for b/strong tags overridden by the rule above */
body b,
body strong {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 700 !important;
}

