Add this rule to your CSS:
h1{
display: none;
}
When the browsers renders the document, it will not consider the H1 tag as this CSS rule marks it as hidden and it will not occupy any screen space. Search engines will still read the H1 tag content. You get both of best world.
One word of caution though, do not use this technique to stuff lots of keyword in your H1 tag. The H1 tag should still contain relevant text.
You must also be aware that if the user disables CSS in its browser (ie: Developer Toolbar in Firefox allows to do that), then the text will be visible. It will also be read by screen readers used by disabled people.
-- @LFSR Consulting: I'm pretty confident that if you do not abuse the H1 tag to stuff keywords and it's content is releavant to the page, Google will not apply a penalty. But I do agree, that if the H1 tag contains useful content then it should be shown.