Hi all, I'm trying to use the seemingly simple Google webfonts technique of adding the link tag to the head but nothing seems to work. I created a barebones email to test it, so can anyone tell me why this does not work? (I realize webfonts are fully supported but I can't see it in any client when running a Litmus test.)

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Web Font Test</title>
    <link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
  </head>
  <body>
      <table cellpadding="0" cellspacing ="0" border="0">
          <tr>
              <td style="color: #444444; font-family: 'Lobster', Arial, sans-serif; font-size: 24px; line-height: 24px;">
              This is a Web Font Test Q    
              </td>
          </tr>
      </table>
  </body>
</html>