I\'m working on making my site look the same under Safari and Chrome. In Chrome it looks exactly how I want it to. The major problem is that Google Font doesn\'t seem to be
My case was that I used font name without quotes. So just change
body{ font-family: roboto, Arial, sans-serif; }
to
body{ font-family: 'roboto', Arial, sans-serif; }
Chrome works perfectly without quotes, but Safari doesn't.