Mobile Safari automatically scales text small or large. You can get fixed with the CSS property
-webkit-text-size-adjust
.
Here’s a sample of how to apply this to your body, just for the iPhone:
@media screen and (max-device-width: 480px){
body {
-webkit-text-size-adjust: none;
}
}