Pull in content from page defined as static front page

The id of the static front page saved as an option name page_on_front. You can get it as

$front_page_id = get_option('page_on_front');

Once you have it call get_post_field().

$content = get_post_field('post_content', $front_page_id );