After importing a Google font that appears perfectly on desktop and cross-browser, an issue arises on mobile where default fonts are shown instead.
Below is a snippet from my App.css file:
@import url("https://fonts.googleapis.com/css2?family=Turret+Road:wght@3000&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Turret Road" !important;
font-weight: 3000;
font-style: normal;
}
Despite searching for solutions, the remedies found do not seem to be compatible with React. Any suggestions on how to resolve this issue?