I have set Futura as the default font for my web application:
body {
font-family:Futura, Verdana, sans-serif;
font-weight: 100;
}
Recently, upon adding
<meta name = "viewport" content = "width=device-width">
for mobile display, I noticed that the font changes to a different thin sans-serif style (which is not similar to Verdana) on my Android device. However, the font remains unchanged on iOS devices.
How can I ensure that the font remains as Futura or choose a specific font for the mobile version of the website?