Why does my mobile menu font differ from the desktop on the Artisan theme?

Hello!

My store (made with Artisan theme) has a different font for the desktop menu and the mobile menu. I wish to have both fonts be the same (Oswald Medium). I’ve tried countless suggestions that worked for other themes but I guess Artisan is unique to others. The latest thing I tried was add the following code to timber.scss.liquid:

.mobile-nav {
font-family: medium oswald !important;
}

.mobile-nav__link>a {
font-family: medium oswald;
}

(I’ve had tried these codes individually, and with and without the !important tag

Thank you!

@choixstore Please try to add the following code at the end of style.css file.

.mobileMenu__list {
    font-family: Oswald, sans-serif;
    font-weight: 500;
}