i think you forgot {} open and close on your @media
your code should be somthing like this.
@media all and (min-width: 992px){
.menu-layout-2 .theme-primary-menu > li > a {
font-family: sans-serif !important;
font-size: 14px;
font-weight: 600;
text-transform: none;
color: #3c3c3c;
}
}
i have the same problem for my جعبه تقسیم site.
when i use !important in css the problem solved. like this :
@media (min-width: 992px)
.menu-layout-2 .theme-primary-menu > li > a {
font-family: poppins !important;
font-size: 14px;
font-weight: 600;
text-transform: none;
color: #3c3c3c;
}