Hello williamsguitars,
I think it is a cufon issue. Open up /wp-content/themes/awake/lib/includes/template-blog.php and on lines 60 - 62 you should see this,
<h2 class="blog_header">
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a>
<span class="comment_bubble"><?php comments_popup_link('0', '1', '%'); ?></span>
</h2>
Go ahead and change it like this,
<h2 class="blog_header">
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<span class="comment_bubble" style = 'position: relative; top: -30px;'><?php comments_popup_link('0', '1', '%'); ?></span>
Let us know if that works for you.