The condensed font I'm currently using, mango grotesque (variable), displays properly on desktop and in the responsive viewer. However, when I access the site on mobile devices, it seems that the font-weight appears too bold and not responsive. The issue persists on both Chrome ios and Safari ios, even after testing. My font CSS is provided below.
https://i.sstatic.net/oBuC6.jpg
I would like the font to behave similarly to how it appears when viewed through inspect element on desktop. I have attempted to resolve this by adjusting the font weight with media queries specifically for mobile devices, but this does not seem to be an optimal solution. Furthermore, as per my observations using the responsive viewer in the desktop inspect element, the font's responsiveness seems appropriate.
@font-face {
font-family: "Hubot Sans";
src: url("../fonts/HubotSans[slnt\,wdth\,wght].woff2") format("woff2");
}
@font-face {
font-family: "Mango-Grotesque";
src: url('../fonts/Mango Grotesque-VF.woff2') format('woff2');
}
body {
font-family: "Hubot Sans", Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
margin-top: 0;
}
p,
ul,
code,
ol {
max-width: 40rem;
line-height: 1.5;
margin-bottom: var(--sp-3xl);
}
...