Is there a way that I can embed custom web fonts using CSS's @font-face
in email templates. This question is specifically related to email templates in MailChimp, but I would also like to know if there is a cross-browser solution that works on all or most email subscription services?
I have considered embedding it in the style header this way:
@font-face {
src: url("http://www.remoteserver.com/fonts/font.otf");
font-family: Font;
}
But I am afraid this would drastically effect page load. Is there a better way?
Update: For the sake of finding a universal solution these are NOT Google fonts, or fonts that exist in any sort of online source library.