You will need to add a condition in the template's index.php to disable mosmainbody from loading if the user is on the frontpage. Find the statement in the template file and change it to the following:
<?php if ($option != "com_frontpage") : ?>
<?php mosMainBody(); ?>
<?php endif; ?>
This will ensure the content (mosmainbody) only loads if the user is *not* on the site's homepage.